home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Internet & Communication / WordPress 1.5.1.dmg / wordpress / wp-content / themes / default / single.php < prev    next >
Encoding:
PHP Script  |  2005-05-09  |  2.6 KB  |  66 lines

  1. <?php get_header(); ?>
  2.  
  3.     <div id="content" class="widecolumn">
  4.                 
  5.   <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6.     
  7.         <div class="navigation">
  8.             <div class="alignleft"><?php previous_post_link('« %link') ?></div>
  9.             <div class="alignright"><?php next_post_link('%link »') ?></div>
  10.         </div>
  11.     
  12.         <div class="post" id="post-<?php the_ID(); ?>">
  13.             <h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  14.     
  15.             <div class="entrytext">
  16.                 <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
  17.     
  18.                 <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
  19.     
  20.                 <p class="postmetadata alt">
  21.                     <small>
  22.                         This entry was posted
  23.                         <?php /* This is commented, because it requires a little adjusting sometimes.
  24.                             You'll need to download this plugin, and follow the instructions:
  25.                             http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
  26.                             /* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?> 
  27.                         on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
  28.                         and is filed under <?php the_category(', ') ?>.
  29.                         You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed. 
  30.                         
  31.                         <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
  32.                             // Both Comments and Pings are open ?>
  33.                             You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(true); ?>" rel="trackback">trackback</a> from your own site.
  34.                         
  35.                         <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
  36.                             // Only Pings are Open ?>
  37.                             Responses are currently closed, but you can <a href="<?php trackback_url(true); ?> " rel="trackback">trackback</a> from your own site.
  38.                         
  39.                         <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
  40.                             // Comments are open, Pings are not ?>
  41.                             You can skip to the end and leave a response. Pinging is currently not allowed.
  42.             
  43.                         <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
  44.                             // Neither Comments, nor Pings are open ?>
  45.                             Both comments and pings are currently closed.            
  46.                         
  47.                         <?php } edit_post_link('Edit this entry.','',''); ?>
  48.                         
  49.                     </small>
  50.                 </p>
  51.     
  52.             </div>
  53.         </div>
  54.         
  55.     <?php comments_template(); ?>
  56.     
  57.     <?php endwhile; else: ?>
  58.     
  59.         <p>Sorry, no posts matched your criteria.</p>
  60.     
  61. <?php endif; ?>
  62.     
  63.     </div>
  64.  
  65. <?php get_footer(); ?>
  66.